home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_asm
/
zendisk1
/
lst8-2.asm
< prev
next >
Wrap
Assembly Source File
|
1990-02-15
|
282b
|
19 lines
;
; *** Listing 8-2 ***
;
; Copies a byte via AL, with memory addressed with
; accumulator-specific direct addressing.
;
jmp Skip
;
SourceValue db 1
DestValue db 0
;
Skip:
call ZTimerOn
rept 1000
mov al,[SourceValue]
mov [DestValue],al
endm
call ZTimerOff